home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
text
/
misc
/
MSWordView_src.lha
/
mswordview
/
config.h.in
< prev
next >
Wrap
Text File
|
1998-12-02
|
2KB
|
102 lines
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define to empty if the keyword does not work. */
#undef const
/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
/* Define if you have the wait3 system call. */
#undef HAVE_WAIT3
/* Define if you have the waitpid system call. */
#undef HAVE_WAITPID
/* Define as the return type of signal handlers (int or void). */
#undef RETSIGTYPE
/* Define if you have the <errno.h> header file. */
#define HAVE_ERRNO_H 1
#undef HAVE_POSIX_SIGNALS
/* Define to `int' if <sys/types.h> doesn't define. */
#undef pid_t
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H
/* Define if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define if you want zlib to uncompress wmf files */
#undef SYSTEM_ZLIB
#if defined(HAVE_SYS_WAIT_H)
#include <sys/wait.h>
#endif
#if defined (ultrix) && defined (mips) && defined (_POSIX_VERSION)
# define WAITPID(pid, statusp, options) \
wait3 ((union wait *)statusp, options, (struct rusage *)0)
#else
# if defined (_POSIX_VERSION) || defined (HAVE_WAITPID)
# define WAITPID(pid, statusp, options) \
waitpid ((pid_t)pid, statusp, options)
# else
# if defined (HAVE_WAIT3)
# define WAITPID(pid, statusp, options) \
wait3 (statusp, options, (struct rusage *)0)
# else
# define WAITPID(pid, statusp, options) \
wait3 (statusp, options, (int *)0)
# endif /* HAVE_WAIT3 */
# endif /* !_POSIX_VERSION && !HAVE_WAITPID*/
#endif /* !(Ultrix && mips && _POSIX_VERSION) */
/*signal things*/
#include <signal.h>
#if !defined (HAVE_POSIX_SIGNALS)
# define signal_handle(sig, handler) signal (sig, handler)
#else
extern void signal_handle(); /* in c code*/
#if !defined (SA_RESTART)
# define SA_RESTART 0
#endif
#endif /* _POSIX_VERSION */
typedef RETSIGTYPE SigHandler ();
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#if defined(HAVE_ERRNO_H)
#include <errno.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <limits.h>
#include <dirent.h>
#include <stdarg.h>
#include <getopt.h>